home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / RCS / Gate_SetFile.c,v < prev    next >
Text File  |  1992-06-05  |  2KB  |  85 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     92.06.04.22.03.22;  author jhh;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * Gate_SetFile.c --
  27.  *
  28.  *    Source code for the Gate_SetFile library procedure.
  29.  *
  30.  * Copyright 1988 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  */
  39.  
  40. #ifndef lint
  41. static char rcsid[] = "$Header: /user6/voelker/src/hosttest/RCS/Gate_SetFile.c,v 1.1 92/03/26 19:45:06 voelker Exp Locker: voelker $ SPRITE (Berkeley)";
  42. #endif not lint
  43.  
  44. #include <stdio.h>
  45. #include <gate.h>
  46. #include <gateInt.h>
  47. #include <stdlib.h>
  48. #include <string.h>
  49.  
  50. /*
  51.  *-----------------------------------------------------------------------
  52.  *
  53.  * Gate_SetFile --
  54.  *
  55.  *    Change the file being used to fetch info.
  56.  *
  57.  * Results:
  58.  *    Zero is returned if all went well.  If an error occurred,
  59.  *    then -1 is returned and errno tells exactly what went wrong.
  60.  *
  61.  * Side Effects:
  62.  *    The old file is closed. A Gate_Start need not be given as the
  63.  *    file will be open already.
  64.  *
  65.  *-----------------------------------------------------------------------
  66.  */
  67.  
  68. int
  69. Gate_SetFile(fileName)
  70.     char          *fileName;    /* File to use as the database */
  71. {
  72.     if (gateFile != (FILE *) NULL) {
  73.     fclose(gateFile);
  74.     }
  75.     gateFile = fopen(fileName, "r");
  76.     if (gateFile == (FILE *) NULL) {
  77.     return -1;
  78.     } else {
  79.     gateFileName = malloc((unsigned) (strlen(fileName) + 1));
  80.     strcpy(gateFileName, fileName);
  81.     }
  82.     return 0;
  83. }
  84. @
  85.